www.gusucode.com > C++ QQ农场源代码程序 > C++ QQ农场源代码程序/code/QQ分析_种菜/QQ分析_种菜/程序结构说明.txt

     ST_FRIENDINFO friendinfo[1024*2];	//好友信息 所有的好友
 int m_allnum;				//所有好友数量



//好友信息
struct ST_FRIENDINFO {
	int userId;			//好友id
	char szuserid[64];
	char userName[32];
	char headPic[128];
	int yellowlevel;	//黄钻等级
	int yellowstatus;
	int exp;			//经验
	
	int money;			//赚到的钱

	ST_TIAN_INFO tian_info[32];	//这个人的植物信息
	int ntiannum;

};

//田地信息
struct ST_TIAN_INFO {
	int type;	//植物种类
	int dj;		//成熟等级
	int num_cao;		//草他妈
	int num_cong;	//


	int allnum;	//k: 产量  
	int nownum;	//m: 当前剩余数  

	int a;
	int b;
	int c;
	int d;
	int e;
	int f;
	int g;
	int h;
	int i;
	int j;
	int k;
	int l;
	int m;
	int n;
	int o;
	int p;
	int q;
	int r;
	char szzhiwuname[32];
	char sztime[64];	//播种时间


};